From 2d6e367ecc3c32c0aa5bd5c61e34208f18af9039 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 3 Nov 2006 10:26:36 +0000 Subject: [PATCH] [XEN] Quieten down tracing when fail (quite expectedly) to map INVALID_MFN. Signed-off-by: Keir Fraser --- xen/arch/x86/mm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c index 88d031fac4..fd0745773e 100644 --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -572,8 +572,9 @@ get_page_from_l1e( if ( !iomem_access_permitted(d, mfn, mfn) ) { - MEM_LOG("Non-privileged (%u) attempt to map I/O space %08lx", - d->domain_id, mfn); + if ( mfn != INVALID_MFN ) + MEM_LOG("Non-privileged (%u) attempt to map I/O space %08lx", + d->domain_id, mfn); return 0; } -- 2.30.2